沒有 Switch 了


react-router-dom V6 沒有 Switch 了

import Switch 要改成 Routes

<Route path='/signin' element={<Signin />} ></Route>

previous:

<Switch>
    <Route path="/signin" exact>
      <Signin />
    </Route>
</Switch>







你可能感興趣的文章

[Math] 平方根(square root)範例

[Math] 平方根(square root)範例

AWS  Solutions Architect - Associate (SAA) 學習計畫與備考心得: 前言

AWS Solutions Architect - Associate (SAA) 學習計畫與備考心得: 前言

[python] 關於python三兩事 - class,  __init__,   __call__

[python] 關於python三兩事 - class, __init__, __call__






留言討論